4e4e991233f309d4178b289c381e9d4508b82da4,portal-impl/src/com/liferay/portlet/login/action/OpenIdAction.java,OpenIdAction,sendOpenIdRequest,#ThemeDisplay#ActionRequest#ActionResponse#,387
Before Change
fetch.addAttribute(
_OPEN_ID_ATTR_EMAIL,
PropsUtil.get(
PropsKeys.OPEN_ID_AX_TYPE_EMAIL,
new Filter(openIdProvider)), true);
fetch.addAttribute(
_OPEN_ID_ATTR_FULLNAME,
After Change
String openIdHost = getOpenIdHostType(endpoint);
String[] openIdAXTypes = PropsUtil.getArray
(PropsKeys.OPEN_ID_AX_TYPES, new Filter(openIdHost));
for (String openIdAXType : openIdAXTypes) {
if (openIdAXType.equals(_OPEN_ID_ATTR_EMAIL)) {
fetch.addAttribute(
_OPEN_ID_ATTR_EMAIL,